데이터 구조 템 플 릿 c + + 대수 클래스 #define LL long long #define INF 0x3f3f3f3f using namespace std; const int M = 1e3+10; const int MAXN = 9; class BigNum { public: int a[M],len,sign; void init(); void assignString(const char*); void assignInt(LL); LL toI... 데이터 구조 템 플 릿
c + + 대수 클래스 #define LL long long #define INF 0x3f3f3f3f using namespace std; const int M = 1e3+10; const int MAXN = 9; class BigNum { public: int a[M],len,sign; void init(); void assignString(const char*); void assignInt(LL); LL toI... 데이터 구조 템 플 릿